g_assert (error != NULL);
ot_util_fatal_literal (error->message);
}
-
-/**
- * ot_unix_close:
- *
- * Like close(), but uses #GError, and handles EINTR.
- */
-gboolean
-ot_unix_close (int fd, GError **error)
-{
- int result;
- do
- result = close (fd);
- while (G_UNLIKELY (result != 0 && errno == EINTR));
- if (result != 0)
- {
- ot_util_set_error_from_errno (error, errno);
- return FALSE;
- }
- return TRUE;
-}
-
-/**
- * ot_unix_open_noatime:
- *
- * Open a file for reading, using O_NOATIME if possible.
- */
-gboolean
-ot_unix_open_noatime (const char *path,
- int *out_fd,
- GError **error)
-{
- int fd;
-
-#ifdef O_NOATIME
- fd = g_open (path, O_RDONLY | O_NOATIME | O_CLOEXEC, 0);
- if (fd == -1 && errno == EPERM)
-#endif
- fd = g_open (path, O_RDONLY | O_CLOEXEC, 0);
- if (fd == -1)
- {
- ot_util_set_error_from_errno (error, errno);
- return FALSE;
- }
- *out_fd = fd;
- return TRUE;
-}
int *out_fd,
GError **error);
-gboolean ot_unix_close (int fd, GError **error);
-
gboolean ot_unix_open_noatime (const char *path, int *out_fd, GError **error);
G_END_DECLS
GError **error)
{
gboolean ret = FALSE;
- const char *path = NULL;
ot_lvariant GVariant *ret_variant = NULL;
GMappedFile *mfile = NULL;
- int fd;
- path = gs_file_get_path_cached (src);
- if (!ot_unix_open_noatime (path, &fd, error))
- goto out;
- mfile = g_mapped_file_new_from_fd (fd, FALSE, error);
+ mfile = gs_file_map_noatime (src, NULL, error);
if (!mfile)
goto out;
- if (!ot_unix_close (fd, error))
- goto out;
ret_variant = g_variant_new_from_data (type,
g_mapped_file_get_contents (mfile),